home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Toolbox
/
Visual Basic Toolbox (P.I.E.)(1996).ISO
/
printing
/
virtua
/
timing.frm
< prev
next >
Wrap
Text File
|
1994-10-17
|
3KB
|
107 lines
VERSION 2.00
Begin Form timing
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Double
Caption = "Timing"
ClientHeight = 2040
ClientLeft = 3495
ClientTop = 2490
ClientWidth = 3210
Height = 2475
Left = 3420
LinkTopic = "Form5"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2040
ScaleWidth = 3210
Top = 2130
Width = 3360
Begin CommandButton btnOK
Caption = "OK"
Height = 375
Left = 1080
TabIndex = 6
Top = 1440
Width = 1095
End
Begin Label Label2
Alignment = 1 'Right Justify
BackColor = &H00C0C0C0&
BorderStyle = 1 'Fixed Single
Caption = "Label2"
Height = 255
Index = 2
Left = 1680
TabIndex = 5
Top = 960
Width = 1000
End
Begin Label Label2
Alignment = 1 'Right Justify
BackColor = &H00C0C0C0&
BorderStyle = 1 'Fixed Single
Caption = "Label2"
Height = 255
Index = 1
Left = 1680
TabIndex = 4
Top = 600
Width = 1000
End
Begin Label Label2
Alignment = 1 'Right Justify
BackColor = &H00C0C0C0&
BorderStyle = 1 'Fixed Single
Caption = "Label2"
Height = 255
Index = 0
Left = 1680
TabIndex = 3
Top = 240
Width = 1000
End
Begin Label Label1
AutoSize = -1 'True
BackColor = &H00C0C0C0&
Caption = "Display Time:"
Height = 195
Index = 2
Left = 480
TabIndex = 2
Top = 600
Width = 1155
End
Begin Label Label1
AutoSize = -1 'True
BackColor = &H00C0C0C0&
Caption = "# Records:"
Height = 195
Index = 1
Left = 480
TabIndex = 1
Top = 960
Width = 960
End
Begin Label Label1
AutoSize = -1 'True
BackColor = &H00C0C0C0&
Caption = "Query Time:"
Height = 195
Index = 0
Left = 480
TabIndex = 0
Top = 240
Width = 1035
End
End
Sub btnOK_Click ()
Unload timing
End Sub
Sub Form_Load ()
label2(0).Caption = Format$(qTime / 1000, "##0.00")
label2(1).Caption = Format$(pTime / 1000, "##0.00")
label2(2).Caption = gDS.RecordCount
End Sub